home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / Turbo Prolog 2 / EXAMPL65.C < prev    next >
Encoding:
Text File  |  1986-04-25  |  120 b   |  8 lines

  1.    /* program 65 */
  2.  
  3. treble_0(x,y) 
  4.   int x; 
  5.   int *y;
  6. {
  7.  *y=3+x;  /* the value of x can be used in treble */
  8.  }